home *** CD-ROM | disk | FTP | other *** search
/ Day Cry / Day Cry CD.bin / oh_towns / taropyon / splib / splib.lzh / PRG / ZMODEM / FLIB.H < prev    next >
C/C++ Source or Header  |  1993-08-10  |  308b  |  18 lines

  1. #ifndef    _FLIB_H
  2. #define    _FLIB_H
  3.  
  4. typedef    struct    _ffplst_t
  5. {    struct    _ffplst_t    *next;
  6.     struct    _ffplst_t    *prev;
  7.     FILE                *fp;
  8.     int                    md;
  9.     int                    drv;
  10.     char                fn[256];
  11. } FFPLST_T;
  12.  
  13. FILE    *FM_fopen(CONST char *fn, CONST char *md);
  14. int        FM_fclose( FILE *fp );
  15. void    FM_all_fclose(void);
  16.  
  17. #endif
  18.